Keycloak REST Services 1.5.0-Final

Path: / admin / realms / {realm} / roles-by-id / {role-id} / composites / clients / {client}

Return a set of client-level roles for a specific client that are in the role's composite

Path parameters:
realm - realm name (not id!)
role-id -
client -

Resource Methods
Method Summary
NameDescription
GET /admin/realms/{realm}/roles-by-id/{role-id}/composites/clients/{client}Return a set of client-level roles for a specific client that are in the role's composite
GET /admin/realms/{realm}/roles-by-id/{role-id}/composites/clients/{client}Return a set of client-level roles for a specific client that are in the role's composite

Method Detail

GET /admin/realms/{realm}/roles-by-id/{role-id}/composites/clients/{client}

Return a set of client-level roles for a specific client that are in the role's composite

HTTP Example:
GET /admin/realms/{realm}/roles-by-id/{role-id}/composites/clients/{client}
API Example:

RoleByIdResource.getClientRoleComposites({'realm': /* name realm name (not id!) */,
  'role-id': /* id */,
  'client': /* client */});

Output:
Set<RoleRepresentation> -
Produces:
application/json

GET /admin/realms/{realm}/roles-by-id/{role-id}/composites/clients/{client}

Return a set of client-level roles for a specific client that are in the role's composite

HTTP Example:
GET /admin/realms/{realm}/roles-by-id/{role-id}/composites/clients/{client}
API Example:

RoleByIdResource.getClientByIdRoleComposites({'realm': /* name realm name (not id!) */,
  'role-id': /* role */,
  'client': /* client */});

Output:
Set<RoleRepresentation> -
Produces:
application/json

Keycloak REST Services 1.5.0-Final